home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / shutdown-fx-20-c / Fade module ƒ / ◊ Fades ƒ / Circle in fade.c < prev    next >
C/C++ Source or Header  |  1994-07-11  |  3KB  |  101 lines

  1. /**********************************************************************\
  2.  
  3. File:        Circle in fade.c
  4.  
  5. Purpose:    Graphic effect to fade main screen to solid pattern.
  6.             See comments below for more description.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program in a file named "GNU General Public License".
  20. If not, write to the Free Software Foundation, 675 Mass Ave,
  21. Cambridge, MA 02139, USA.
  22.  
  23. \**********************************************************************/
  24.  
  25. #include "timing.h"
  26.  
  27. #define    gap            4        /* difference between one radius and the next */
  28. #define CorrectTime 2
  29. #define theWindowHeight (boundsRect.bottom-boundsRect.top)
  30. #define theWindowWidth (boundsRect.right-boundsRect.left)
  31.  
  32. pascal short main(Rect boundsRect, Pattern *thePattern);
  33.  
  34. /* Take a really big circle, then a slightly smaller circle (-gap), then
  35.    take the region in between them and copy that, then decrease the outer
  36.    circle radius by gap.  Thus: circle in, by successive donut-like copies. */
  37.  
  38. pascal short main(Rect boundsRect, Pattern *thePattern)
  39. {
  40.     Rect            theRect;
  41.     int                cx, cy;
  42.     RgnHandle        curregion,lastregion,diffregion, boundsRgn, sectrgn;
  43.     Point            zeroPoint;
  44.     int                StartRadius;
  45.     
  46.     zeroPoint.h=boundsRect.left;
  47.     zeroPoint.v=boundsRect.top;
  48.  
  49.     cx = theWindowWidth / 2;
  50.     cy = theWindowHeight / 2;
  51.     
  52.     boundsRgn=NewRgn();
  53.     SetRectRgn(boundsRgn, boundsRect.left, boundsRect.top, boundsRect.right, boundsRect.bottom);
  54.     sectrgn=NewRgn();
  55.     lastregion=NewRgn();
  56.     StartRadius=0;
  57.     do
  58.     {
  59.         StartRadius+=2*gap;
  60.         theRect.left=cx-StartRadius;     /* circumscribing rectangle for outer circle */
  61.         theRect.right=cx+StartRadius;
  62.         theRect.top=cy-StartRadius;
  63.         theRect.bottom=cy+StartRadius;
  64.         OffsetRect(&theRect, boundsRect.left, boundsRect.top);
  65.         SetEmptyRgn(lastregion);
  66.         OpenRgn();
  67.             FrameOval(&theRect);        /* first circle */
  68.         CloseRgn(lastregion);
  69.     }
  70.     while (!PtInRgn(zeroPoint, lastregion));
  71.     
  72.     curregion=NewRgn();
  73.     diffregion=NewRgn();
  74.  
  75.     while (theRect.right-theRect.left>0)
  76.     {
  77.         StartTiming();
  78.         theRect.left+=gap;
  79.         theRect.right-=gap;
  80.         theRect.top+=gap;
  81.         theRect.bottom-=gap;
  82.         SetEmptyRgn(curregion);
  83.         OpenRgn();
  84.             FrameOval(&theRect);   /* inner circle */
  85.         CloseRgn(curregion);
  86.         DiffRgn(lastregion,curregion,diffregion);   /* donut we need */
  87.         SectRgn(diffregion, boundsRgn, sectrgn);
  88.         FillRgn(sectrgn, *thePattern);
  89.         CopyRgn(curregion,lastregion);    /* outer circle = inner circle */
  90.         TimeCorrection(CorrectTime);
  91.     }
  92.     
  93.     DisposeRgn(curregion);
  94.     DisposeRgn(lastregion);
  95.     DisposeRgn(diffregion);
  96.     DisposeRgn(boundsRgn);
  97.     DisposeRgn(sectrgn);
  98.     
  99.     return 0;
  100. }
  101.